home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / util / rexx / ParseRX.readme < prev    next >
Text File  |  2002-05-23  |  982b  |  37 lines

  1. Short:    ARexx Interpreter (shell in virtual ARexx mode)
  2. Author:   Bruce steers <bsteers@ukonline.co.uk>
  3. Uploader: http://web.ukonline.co.uk/bsteers/
  4. Version:  1
  5. Type:     util/rexx
  6. Required: AWNP 2.43+ , Classact or os3.5+Reaction
  7.  
  8.  
  9.  
  10. ParseRX by Brucey (one stupidly simple ARexx Utility:)
  11.  
  12.  
  13. this whole program is based around this loop...
  14.  
  15. DO FOREVER
  16.  CALL WRITECH(STDOUT, '1B'X || '[33m'RC'' || '1B'X || '[31m:' || '1B'X || '[32m'address()'' || '1B'X || '[31m: ')
  17.  PRX_LN=READLN(STDIN)
  18.  INTERPRET PRX_LN
  19. END
  20.  
  21. you would type the command "exit" to leave it
  22.  
  23.  
  24. all the rest of this script is fancy functions
  25. to aid in making/debugging arexx functions (Using AWNPipe)
  26.  
  27.  
  28.  
  29. commands so far are ...
  30.  
  31.      Q,EXIT or <return>(twice) will Quit ParseRX
  32.      SHP = same as typing  "say show('p')"
  33.      ADC = ADDRESS COMMAND
  34.      ADR portname = address portname (ADRQ for Requester)
  35.      ADV portname = address value portname (ADVQ for Requester)
  36.      ALIB / RLIB to Add Revove ARexx libraries
  37.